bufio.Scanner.start (field)
14 uses
bufio (current package)
scan.go#L35: start int // First non-processed byte in buf.
scan.go#L145: if s.end > s.start || s.err != nil {
scan.go#L146: advance, token, err := s.split(s.buf[s.start:s.end], s.err != nil)
scan.go#L177: s.start = 0
scan.go#L184: if s.start > 0 && (s.end == len(s.buf) || s.start > len(s.buf)/2) {
scan.go#L185: copy(s.buf, s.buf[s.start:s.end])
scan.go#L186: s.end -= s.start
scan.go#L187: s.start = 0
scan.go#L205: copy(newBuf, s.buf[s.start:s.end])
scan.go#L207: s.end -= s.start
scan.go#L208: s.start = 0
scan.go#L243: if n > s.end-s.start {
scan.go#L247: s.start += n
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |